home *** CD-ROM | disk | FTP | other *** search
/ Great Canadian Scientists / GCS_CD.iso / mac / PC / viewer.exe / viewer.DXR / 00015_Main Scripts.ls < prev    next >
Encoding:
Text File  |  1996-09-17  |  572 b   |  20 lines

  1. on startMovie
  2.   repeat with count = 2 to 12
  3.     resetField(count, 18, "Plain", "Helvetica")
  4.   end repeat
  5.   if the machineType = 256 then
  6.     openXLib(the pathName & "GCSDATA\OTHER\FILEIO.DLL")
  7.   end if
  8. end
  9.  
  10. on resetField theFieldID, fSize, fFace, fFont
  11.   set the text of cast integer(theFieldID) to " "
  12.   set the textSize of member integer(theFieldID) to integer(fSize)
  13.   set the textStyle of member integer(theFieldID) to string(fFace)
  14.   set the textFont of member integer(theFieldID) to string(fFont)
  15.   set the text of cast integer(theFieldID) to EMPTY
  16. end
  17.  
  18. on idle
  19. end
  20.